你可以注册实现HealthIndicator接口的Spring beans来提供自定义健康信息。你需要实现health()
方法,并返回一个Health
响应,该响应需要包含一个status
和其他用于展示的详情。
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
@Component
public class MyHealth implements HealthIndicator {
@Override
public Health health() {
int errorCode = check(); // perform some specific health check
if (errorCode != 0) {
return Health.down().withDetail("Error Code", errorCode).build();
}
return Health.up().build();
}
}
注 对于给定HealthIndicator
的标识是bean name去掉HealthIndicator
后缀剩下的部分。在以上示例中,可以在my
的实体中获取健康信息。
除Spring Boot预定义的Status
类型,Health
也可以返回一个代表新的系统状态的自定义Status
。在这种情况下,你需要提供一个HealthAggregator
接口的自定义实现,或使用management.health.status.order
属性配置默认实现。
例如,假设一个新的,代码为FATAL
的Status
被用于你的一个HealthIndicator
实现中。为了配置严重性级别,你需要将以下配置添加到application属性文件中:
management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP
如果使用HTTP访问health端点,你可能想要注册自定义的status,并使用HealthMvcEndpoint
进行映射。例如,你可以将FATAL
映射为HttpStatus.SERVICE_UNAVAILABLE
。